home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************************
- *
- * Include all the necessary files
- *
- * MacHeaders.h - C Headers File
- *
- * Copyright © Apple Computer, Inc. 1988 - 1993
- * All rights reserved.
- *
- * It's no secret that trying to remember what files need to be included for
- * a project is a time consuming task meant for background processes.
- * Well, short of having them, we've got MacHeaders. (Thanks to Think-C.)
- *
- *************************************************************************************/
-
-
- #ifndef __MACHEADERS__
- #define __MACHEADERS__
-
- #include <Controls.h>
- #include <Devices.h>
- #include <DiskInit.h>
- #include <Events.h>
- #include <Fonts.h>
- #include <Memory.h>
- #include <Notification.h>
- #include <OSUtils.h>
- #include <Quickdraw.h>
- #include <Scrap.h>
- #include <Desk.h>
- #include <Dialogs.h>
- #include <Errors.h>
- #include <Files.h>
- #include <Lists.h>
- #include <Menus.h>
- #include <OSEvents.h>
- #include <Processes.h>
- #include <Resources.h>
- #include <SegLoad.h>
- #include <StandardFile.h>
- #include <Timer.h>
- #include <Types.h>
-
- #ifdef __CONDITIONALMACROS__
- #include <LowMem.h>
- #else
- #include <SysEqu.h>
- #endif
-
- #include <Packages.h>
- #include <TextEdit.h>
- #include <ToolUtils.h>
- #include <Windows.h>
- #include <QDOffscreen.h>
-
- #endif
-
-